[
  { "keys": ["ctrl+e"],
    "command": "insert_snippet",
    "args": {"contents": "<a href=\"#\">${0:$SELECTION}</a>" }
   },
  { "keys": ["ctrl+q"],
    "command": "insert_snippet",
    "args": {"contents": "<p>${0:$SELECTION}</p>" }
  },
  { "keys": ["ctrl+w"],
    "command": "insert_snippet",
    "args": {"contents": "<li>${0:$SELECTION}</li>" }
  },
    { "keys": ["ctrl+u"],
    "command": "insert_snippet",
    "args": {"contents": "<ul>${0:$SELECTION}</ul>" }
  },
  { "keys": ["ctrl+1"],
    "command": "insert_snippet",
    "args": {"contents": "<h1>${0:$SELECTION}</h1>" }
  },
  { "keys": ["ctrl+2"],
    "command": "insert_snippet",
    "args": {"contents": "<h2>${0:$SELECTION}</h2>" }
  },
  { "keys": ["ctrl+3"],
    "command": "insert_snippet",
    "args": {"contents": "<h3>${0:$SELECTION}</h3>" }
  },
  { "keys": ["ctrl+y"],
    "command": "insert_snippet",
    "args": {"contents": "<span>${0:$SELECTION}</span>" }
  },
  { "keys": ["ctrl+r"],
    "command": "insert_snippet",
    "args": {"contents": "<div>${0:$SELECTION}</div>" }
  },
  { "keys": ["ctrl+t"],
    "command": "insert_snippet",
    "args": {"contents": "<strong>${0:$SELECTION}</strong>" }
  },
  { "keys": ["shift+enter"],
    "command": "insert_snippet",
    "args": {"contents": "<br />\n${0:$SELECTION}" }
  },
  { "keys": ["shift+space"],
    "command": "insert_snippet",
    "args": {"contents": "&nbsp;${0:$SELECTION}" }
  },
  { "keys": ["ctrl+shift+e"],
    "command": "insert_snippet",
    "args": {"contents": "[${0:$SELECTION}](#)" }
  },
  { "keys": ["ctrl+shift+w"],
    "command": "insert_snippet",
    "args": {"contents": "* ${0:$SELECTION}" }
  },
  { "keys": ["ctrl+shift+1"],
    "command": "insert_snippet",
    "args": {"contents": "# ${0:$SELECTION}" }
  },
  { "keys": ["ctrl+shift+2"],
    "command": "insert_snippet",
    "args": {"contents": "## ${0:$SELECTION}" }
  },
  { "keys": ["ctrl+shift+3"],
    "command": "insert_snippet",
    "args": {"contents": "### ${0:$SELECTION}" }
  },
  { "keys": ["ctrl+shift+t"],
    "command": "insert_snippet",
    "args": {"contents": "**${0:$SELECTION}**" }
  },
  { "keys": ["ctrl+shift+enter"],
    "command": "insert_snippet",
    "args": {"contents": "  \n${0:$SELECTION}" }
  },
  { "keys": ["ctrl+shift+r"],
    "command": "reindent" ,
    "args": { "single_line": false }
  },
  { "keys": ["alt+m"],
    "command": "markdown_preview",
    "args": {"target": "browser", "parser":"markdown"}
  }
]
